drawBezier(PDFPen,double,double,double,double,double,double,double,double) Method
In This Topic
Draws a Bézier spline defined by four ordered pairs of coordinates that represent points.
Syntax
public void drawBezier(
PDFPen ,
double ,
double ,
double ,
double ,
double ,
double ,
double ,
double
)
|
Parameters
- pen
- Object that determines the color, width, and style of the curve.
- x1
- The x-coordinate of the starting point of the curve.
- y1
- The y-coordinate of the starting point of the curve.
- x2
- The x-coordinate of the first control point of the curve.
- y2
- The y-coordinate of the first control point of the curve.
- x3
- The x-coordinate of the second control point of the curve.
- y3
- The y-coordinate of the second control point of the curve.
- x4
- The x-coordinate of the ending point of the curve.
- y4
- The y-coordinate of the ending point of the curve.
See Also